Skip to content

Instantly share code, notes, and snippets.

@un4ckn0wl3z
un4ckn0wl3z / strudel_learning.md
Created November 21, 2025 09:06 — forked from therebelrobot/strudel_learning.md
Strudel Learning Course

🎶 Strudel Self-Study Workshop

A hands-on introduction to live-coded music in the browser


📖 Overview

Strudel is a JavaScript-derived live-coding environment that lets you make music directly in a browser REPL. Each snippet you evaluate becomes part of a real-time musical texture.

@gabolopez90
gabolopez90 / git.md
Last active March 4, 2026 12:31
Apuntes sobre comandos de Git para la terminal.

Git

Luego de instalar git, podrás acceder a git en cualquier momento desde la terminal de tu pc (bash, cmd, shell, etc?.

Revisar versión de git

$ git --version

Configurar tu nombre

@Moyf
Moyf / Moy-Link Optimize.css
Created July 31, 2024 16:12
Obsidian CSS: Optimize the link editing experience
@dasdo
dasdo / GIT.md
Last active March 4, 2026 12:28
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com
@vedovelli
vedovelli / INDEX.md
Created March 4, 2026 11:08
nanoclaw devteam: INDEX — todos os prompts do orchestrator

nanoclaw · AI Dev Team — Índice de Prompts

Todos os prompts usados pelo orchestrator (src/dev-team-orchestrator.ts), em ordem lógica de execução.

Variáveis em {{duplas chaves}} são substituídas em runtime pelo TypeScript.


⚙️ Setup (uma vez por instalação)

@cathyxz
cathyxz / srcset-and-sizes.md
Created April 29, 2019 20:52
Srcset and Sizes

Srcset and Sizes

Did some experimentation to figure out how different browsers behave with regards to the srcset and sizes attribute in various browsers. Documented below.

srcset + sizes behavior

Vanilla No AMP No CSS Example: https://codepen.io/cathyxz/pen/vbLrrE

<img srcset="https://placekitten.com/200/200 200w,
 https://placekitten.com/300/300 300w,
Privacy Policy for Real Music
Last Updated: March 4, 2026
1. Data We Collect
To provide and improve our services, Real Music collects and stores the following information:
User Data: Your Discord User ID, Top.gg vote history, and RC Coin wallet balance.
Guild (Server) Data: Server IDs, configured prefixes, premium/boost status, and specific channel IDs configured for 24/7 mode or bot commands.
@tpschmidt
tpschmidt / bootstrap.sh
Created February 28, 2026 11:41
Bootstrap script for OpenClaw on AWS Lightsail with SSM Session Manager, Node.js, AWS CLI, Go, and gogcli
#!/bin/bash
set -eu
# ── SSM agent ────────────────────────────────────────────────────────────────
# We need the SSM agent for accessing Lightsail instances
if ! snap services amazon-ssm-agent | grep -q 'active'; then
snap stop amazon-ssm-agent || true
fi
/snap/amazon-ssm-agent/current/amazon-ssm-agent -register -y \
-id "${ssm_activation_id}" \